Answer:

No, the program is not correct. The computer follows instructions in order. If the first instruction is END the computer ends its run of the program.

Comments

If you run the program again, the computer will start at the first statement again (and end immediately, as before). Here is another program:

' Program to add two numbers
PRINT 10 + 5
END

The first line of this program is called a comment. A comment starts with an apostrophe ( ' ). This is the character just left of the Enter key on the computer's keyboard. Comment lines tell humans what the program does, or what parts of the program do. When the program is run, the computer does not look at the comments at all. The comment lines have no effect on what the program does.

QUESTION 6:

What does the above program do?